iT邦幫忙

2023 iThome 鐵人賽

DAY 19
0
Modern Web

tailwindcss - 從零開始學系列 第 19

tailwindcss - 從零開始學 - Day19 - 表單全

  • 分享至 

  • xImage
  •  

前面兩個單元討論了如何建構出表單內的欄位,但目前只有討論到 input 與 checkbox,這個單元將會討論所有欄位的寫法。

Day16 討論過的 input

<div class="px-8 pb-2">
  <label class="mb-2 block font-bold text-gray-700">Email</label>
  <input class="w-full rounded-lg border border-gray-300 bg-white px-3 py-3 text-sm font-normal text-gray-700 transition-all placeholder:text-gray-500 focus:border-fuchsia-300 focus:outline-none" type="text" placeholder="輸入 Email" />
</div>

select 下拉式選單:

<div class="px-8 pb-2">
  <label class="mb-2 block font-bold text-gray-700">下下拉式選單</label>
  <select class="w-full appearance-none rounded-lg border border-gray-300 bg-white px-3 py-3 text-sm font-normal text-gray-700 transition-all placeholder:text-gray-500 focus:border-fuchsia-300 focus:outline-none">
    <option value="false">否</option>
    <option value="true">是</option>
  </select>
</div>

一樣使用 appearance-none 消除原本的樣式。

input file 檔案選取:

<div class="px-8 pb-2">
  <label class="mb-2 block font-bold text-gray-700">檔案選取</label>
  <input class="w-full appearance-none rounded-lg border border-gray-300 bg-white px-3 py-3 text-sm font-normal text-gray-700 transition-all placeholder:text-gray-500 focus:border-fuchsia-300 focus:outline-none" type="file" accept=".png" />
</div>

在這裡跟下拉式選單使用一樣的樣式。

Day18 討論過的 checkbox

<div class="px-8 pb-2 flex flex-row gap-6">
  <div>
    <label class="mb-2 font-bold text-gray-700">AAA</label>
    <input type="checkbox" class="relative float-left mr-2 mt-1 h-5 w-5 cursor-pointer appearance-none border border-slate-900 bg-white checked:border-0 checked:bg-gradient-to-tl checked:from-gray-100 checked:to-slate-800" />
  </div>
  <div>
    <label class="mb-2 font-bold text-gray-700">BBB</label>
    <input type="checkbox" class="relative float-left mr-2 mt-1 h-5 w-5 cursor-pointer appearance-none border border-slate-900 bg-white checked:border-0 checked:bg-gradient-to-tl checked:from-gray-100 checked:to-slate-800" />
  </div>
</div>

最後,可以編輯多行的 textarea

<div class="px-8 pb-2">
  <label class="mb-2 block font-bold text-gray-700" for="photo">Notes:</label>
  <textarea rows="5" class="block h-auto w-full appearance-none rounded-lg border border-gray-300 bg-white px-3 py-2 text-sm font-normal text-gray-700 transition-all placeholder:text-gray-500 focus:border-fuchsia-300 focus:outline-none" placeholder="Notes"></textarea>
</div>

這裡介紹的樣式大部分都使用一樣的樣式來顯示,說明了只要了解其中一個做法,其它欄位就相對簡單多了。

今日完整範例

tailwindcss - 從零開始學 - Day19 [完]


上一篇
tailwindcss - 從零開始學 - Day18 - 表單 checkbox
下一篇
tailwindcss - 從零開始學 - Day20 - Table
系列文
tailwindcss - 從零開始學30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言